home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr22 / batch_a.zip / MENU.BAT < prev    next >
DOS Batch File  |  1993-04-20  |  1KB  |  77 lines

  1. cls
  2. @echo off
  3. :letters
  4. echo (a) F117a Stealth Fighter
  5. echo (b) Indy 500
  6. echo (c) A-10 Thunderbolt
  7. echo (d) Thunder Chopper
  8. echo (e) Gunship 2000
  9. echo (f) F-16 Falcon
  10. echo (g) Flight Simulator
  11. echo (h) Redbaron
  12. echo (z) Exit
  13. echo -----------------------------
  14. echo -----------------------------
  15. echo enter a letter a - z
  16. query /a
  17. if errorlevel 26 goto exit
  18. if errorlevel 8 goto 8
  19. if errorlevel 7 goto 7
  20. if errorlevel 6 goto 6
  21. if errorlevel 5 goto 5
  22. if errorlevel 4 goto 4
  23. if errorlevel 3 goto 3
  24. if errorlevel 2 goto 2
  25. if errorlevel 1 goto 1
  26. if not errorlevel 10 goto letters
  27. :1
  28. e:
  29. cd\sim\f117
  30. f117.com
  31.  goto letters
  32. :2
  33. e:
  34. cd\sim\indy
  35. indy.exe
  36.  goto letters
  37. :3
  38. e:
  39. cd\sim\a10 
  40. a10trn0.com
  41.  goto letters
  42. :4
  43. e:
  44. cd\sim\chopper
  45. tc.exe 
  46.  goto letters
  47. :5
  48. e:
  49. cd\sim\gs2000
  50. gs2000.com 
  51.  goto letters
  52. :6
  53. e:
  54. cd\sim\falcon3 
  55. falcon3.exe
  56.  goto letters
  57. :7
  58. e:
  59. cd\sim\fltsim
  60. fs.bat 
  61.  goto letters
  62. :8
  63. e:
  64. cd\sim\redbaron
  65. baron.com 
  66.  goto letters
  67.  
  68.  
  69.  
  70. :exit
  71. cls
  72. echo Thanks for using Roger's batch file.
  73. echo \\\\\\\   
  74. echo  -------  BYE!
  75. echo ///////                                                                                    
  76.  
  77.